<!doctype html> <html> <head> <meta charset="utf-8"> <title>Herencia</title> </head> <body> <div id="caja"> <header class="cabecera"> <h1>Cabecera: header</h1> </header> </div> </body> </html>
/* * Leyenda: * A -> ESTILOS DE LINEA * B -> NÚMERO DE IDs * C -> NÚMERO DE CLASES * D -> NÚMERO DE MARCAS HTML */ /*Puntuación = 0,0,0,1*/ h1{ background:yellow; color:blue; } /*Puntuación = 0,0,0,2*/ .healer h1{ background:red; color:yellow; } /*Puntuación = 0,1,1,1*/ #caja .cabecera h1{ background:purple; color:red; } /*Puntuación = 0,1,0,2*/ #caja healer h1{ background:blue; color:yellow; }